home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / loadup.el < prev    next >
Lisp/Scheme  |  1993-11-21  |  6KB  |  191 lines

  1. ;;; loadup.el --- load up standardly loaded Lisp files for Emacs.
  2.  
  3. ;; Copyright (C) 1985, 1986, 1992 Free Software Foundation, Inc.
  4.  
  5. ;; Maintainer: FSF
  6. ;; Keywords: internal
  7.  
  8. ;; This file is part of GNU Emacs.
  9.  
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 2, or (at your option)
  13. ;; any later version.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18. ;; GNU General Public License for more details.
  19.  
  20. ;; You should have received a copy of the GNU General Public License
  21. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  22. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  23.  
  24. ;;; Commentary:
  25.  
  26. ;; This is loaded into a bare Emacs to make a dumpable one.
  27.  
  28. ;;; Code:
  29.  
  30. (message "Using load-path %s" load-path)
  31. (sleep-for 1)
  32.  
  33. ;;; We don't want to have any undo records in the dumped Emacs.
  34. (buffer-disable-undo "*scratch*")
  35.  
  36. (load "byte-run")
  37. ;(garbage-collect)
  38. (load "subr")
  39. ;(garbage-collect)
  40. (load "map-ynp")
  41. ;(garbage-collect)
  42. (load "loaddefs.el")  ;Don't get confused if someone compiled loaddefs by mistake.
  43. (garbage-collect)
  44. (load "simple")
  45. ;(garbage-collect)
  46. (load "help")
  47. ;(garbage-collect)
  48. (load "files")
  49. ;(garbage-collect)
  50. (load "indent")
  51. ;(garbage-collect)
  52. (load "window")
  53. ;(garbage-collect)
  54. (if (fboundp 'delete-frame)
  55.     (progn
  56.       (load "frame")
  57.       (load "mouse")
  58.       (garbage-collect)
  59.       (load "scroll-bar")
  60.       (load "select")))
  61. ;(garbage-collect)
  62. (load "paths.el")  ;Don't get confused if someone compiled paths by mistake.
  63. ;(garbage-collect)
  64. (load "startup")
  65. ;(garbage-collect)
  66. (load "lisp")
  67. ;(garbage-collect)
  68. (load "page")
  69. ;(garbage-collect)
  70. (load "register")
  71. ;(garbage-collect)
  72. (load "paragraphs")
  73. ;(garbage-collect)
  74. (load "lisp-mode")
  75. ;(garbage-collect)
  76. (load "text-mode")
  77. ;(garbage-collect)
  78. (load "fill")
  79. ;(garbage-collect)
  80. (load "c-mode")
  81. ;(garbage-collect)
  82. (load "isearch")
  83. (garbage-collect)
  84. (load "replace")
  85. (if (eq system-type 'vax-vms)
  86.     (progn
  87.       (garbage-collect)
  88.       (load "vmsproc")))
  89. ;(garbage-collect)
  90. (load "abbrev")
  91. ;(garbage-collect)
  92. (load "buff-menu")
  93. (if (eq system-type 'vax-vms)
  94.     (progn
  95.       (garbage-collect)
  96.       (load "vms-patch")))
  97.  
  98. (if (eq system-type 'Windows-NT)
  99.     (progn
  100.       (garbage-collect)
  101.       (load "winnt-patch")))
  102.  
  103. (if (fboundp 'atan)    ; preload some constants and 
  104.     (progn        ; floating pt. functions if 
  105.       (garbage-collect)    ; we have float support.
  106.       (load "float-sup")))
  107. ;(garbage-collect)
  108. (load "vc-hooks")
  109.  
  110. ;If you want additional libraries to be preloaded and their
  111. ;doc strings kept in the DOC file rather than in core,
  112. ;you may load them with a "site-load.el" file.
  113. ;But you must also cause them to be scanned when the DOC file
  114. ;is generated.  For VMS, you must edit ../vms/makedoc.com.
  115. ;For other systems, you must edit ../src/ymakefile.
  116. (if (load "site-load" t)
  117.     (garbage-collect))
  118.  
  119. (load "version.el")  ;Don't get confused if someone compiled version.el by mistake.
  120.  
  121. ;; Note: all compiled Lisp files loaded above this point
  122. ;; must be among the ones parsed by make-docfile
  123. ;; to construct DOC.  Any that are not processed
  124. ;; for DOC will not have doc strings in the dumped Emacs.
  125.  
  126. (message "Finding pointers to doc strings...")
  127. (if (fboundp 'dump-emacs)
  128.     (let ((name emacs-version))
  129.       (while (string-match "[^-+_.a-zA-Z0-9]+" name)
  130.     (setq name (concat (downcase (substring name 0 (match-beginning 0)))
  131.                "-"
  132.                (substring name (match-end 0)))))
  133.       (setq name (concat (expand-file-name "..\etc\DOC-") name))
  134.       (if (file-exists-p name)
  135.       (delete-file name))
  136.       (copy-file (expand-file-name "..\etc\DOC") name t)
  137.       (Snarf-documentation (file-name-nondirectory name)))
  138.     (Snarf-documentation "DOC"))
  139. (message "Finding pointers to doc strings...done")
  140.  
  141. ;Note: You can cause additional libraries to be preloaded
  142. ;by writing a site-init.el that loads them.
  143. ;See also "site-load" above.
  144. (load "site-init" t)
  145. (garbage-collect)
  146.  
  147. ;;; At this point, we're ready to resume undo recording for scratch.
  148. (buffer-enable-undo "*scratch*")
  149.  
  150. (if (or (equal (nth 3 command-line-args) "dump")
  151.     (equal (nth 4 command-line-args) "dump"))
  152.     (if (eq system-type 'vax-vms)
  153.     (progn 
  154.       (message "Dumping data as file temacs.dump")
  155.       (dump-emacs "temacs.dump" "temacs")
  156.       (kill-emacs))
  157.       (let ((name (concat "emacs-" emacs-version)))
  158.     (while (string-match "[^-+_.a-zA-Z0-9]+" name)
  159.       (setq name (concat (downcase (substring name 0 (match-beginning 0)))
  160.                  "-"
  161.                  (substring name (match-end 0)))))
  162.     (message "Dumping under names emacs and %s" name))
  163.       (condition-case ()
  164.       (delete-file "emacs")
  165.     (file-error nil))
  166.       ;; We used to dump under the name xemacs, but that occasionally
  167.       ;; confused people installing Emacs (they'd install the file
  168.       ;; under the name `xemacs'), and it's inconsistent with every
  169.       ;; other GNU product's build process.
  170.       (dump-emacs "emacs" "temacs")
  171.       ;; Recompute NAME now, so that it isn't set when we dump.
  172.       (let ((name (concat "emacs-" emacs-version)))
  173.     (while (string-match "[^-+_.a-zA-Z0-9]+" name)
  174.       (setq name (concat (downcase (substring name 0 (match-beginning 0)))
  175.                  "-"
  176.                  (substring name (match-end 0)))))
  177.     (add-name-to-file "emacs" name t))
  178.       (kill-emacs)))
  179.  
  180. ;; Avoid error if user loads some more libraries now.
  181. (setq purify-flag nil)
  182.  
  183. ;; For machines with CANNOT_DUMP defined in config.h,
  184. ;; this file must be loaded each time Emacs is run.
  185. ;; So run the startup code now.
  186.  
  187. (or (fboundp 'dump-emacs)
  188.     (eval top-level))
  189.  
  190. ;;; loadup.el ends here
  191.